how to leave an empty row in html table

119

how to leave an empty row in html table -


.blank_row
{
    height: 10px !important; /* overwrites any other rules */
    background-color: #FFFFFF;
}



<tr class="blank_row">
    <td colspan="3"></td>
</tr>

Comments

Submit
0 Comments